home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Testing & Debugging / Memory Management / Xap Handles dcmd / Xap.make < prev    next >
Encoding:
Text File  |  1993-09-17  |  578 b   |  25 lines  |  [TEXT/MPS ]

  1. #   File:       Xap.make
  2. #
  3. #    Note that the link order is important. If you link something else first,
  4. #    it will barf in the BuildDcmd.
  5. #    This is set up for MPW 3.2, since the libraries moved.
  6.  
  7. Xap.p.o ƒ Xap.make Xap.p
  8.      Pascal  Xap.p
  9. Xap.a.o ƒ Xap.make Xap.a
  10.      Asm  Xap.a
  11. dcmdGlue.a.o    ƒ    dcmdGlue.a
  12.     asm    -o dcmdGlue.a.o    dcmdGlue.a
  13.  
  14. SOURCES = Xap.a Xap.p
  15. OBJECTS = dcmdGlue.a.o Xap.a.o Xap.p.o
  16.  
  17. Xap ƒ Xap.make {OBJECTS}
  18.     Link -sg Main=PASLIB,%A5INIT  ∂
  19.         {OBJECTS} ∂
  20.         "{Libraries}"Runtime.o ∂
  21.         "{Libraries}"Interface.o ∂
  22.         "{PLibraries}"PasLib.o ∂
  23.         -o Zap
  24.     BuildDcmd Zap 45083
  25.